home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung
/
Power-Programmierung (Tewi)(1994).iso
/
magazine
/
drdobbs
/
c_spec
/
execute
/
mkdir.c
< prev
next >
Wrap
Text File
|
1986-02-20
|
792b
|
33 lines
# This makefile creates all the programs in the /util package
# using Polymake and the Microsoft C compiler. It assumes that
# all .h files are in a .h directory and all .c files are in
# the current directory
#
#
all: cat.exe cp.exe date.exe du.exe echo.exe grep.exe ls.exe \
mkdir.exe mv.exe p.exe pause.exe printenv.exe rm.exe \
rmdir.exe sub.exe
# ----------------------------------------------------------------------
LINK = -link util.lib
.SUFFIXES
.c.exe:
cc $*.c $(LINK) >>err
del $*.obj
# ----------------------------------------------------------------------
cat.exe:
cp.exe:
date.exe: \include\mydos.h
du.exe: \include\mydos.h
echo.exe:
grep.exe:
ls.exe: \include\getargs.h \include\dir.h
mkdir.exe:
mv.exe:
p.exe:
pause.exe:
pri